crypto/internal/fips140/sha256.Digest.h (field)
57 uses
crypto/internal/fips140/sha256 (current package)
sha256.go#L52: h [8]uint32
sha256.go#L75: b = byteorder.BEAppendUint32(b, d.h[0])
sha256.go#L76: b = byteorder.BEAppendUint32(b, d.h[1])
sha256.go#L77: b = byteorder.BEAppendUint32(b, d.h[2])
sha256.go#L78: b = byteorder.BEAppendUint32(b, d.h[3])
sha256.go#L79: b = byteorder.BEAppendUint32(b, d.h[4])
sha256.go#L80: b = byteorder.BEAppendUint32(b, d.h[5])
sha256.go#L81: b = byteorder.BEAppendUint32(b, d.h[6])
sha256.go#L82: b = byteorder.BEAppendUint32(b, d.h[7])
sha256.go#L97: b, d.h[0] = consumeUint32(b)
sha256.go#L98: b, d.h[1] = consumeUint32(b)
sha256.go#L99: b, d.h[2] = consumeUint32(b)
sha256.go#L100: b, d.h[3] = consumeUint32(b)
sha256.go#L101: b, d.h[4] = consumeUint32(b)
sha256.go#L102: b, d.h[5] = consumeUint32(b)
sha256.go#L103: b, d.h[6] = consumeUint32(b)
sha256.go#L104: b, d.h[7] = consumeUint32(b)
sha256.go#L126: d.h[0] = init0
sha256.go#L127: d.h[1] = init1
sha256.go#L128: d.h[2] = init2
sha256.go#L129: d.h[3] = init3
sha256.go#L130: d.h[4] = init4
sha256.go#L131: d.h[5] = init5
sha256.go#L132: d.h[6] = init6
sha256.go#L133: d.h[7] = init7
sha256.go#L135: d.h[0] = init0_224
sha256.go#L136: d.h[1] = init1_224
sha256.go#L137: d.h[2] = init2_224
sha256.go#L138: d.h[3] = init3_224
sha256.go#L139: d.h[4] = init4_224
sha256.go#L140: d.h[5] = init5_224
sha256.go#L141: d.h[6] = init6_224
sha256.go#L142: d.h[7] = init7_224
sha256.go#L235: byteorder.BEPutUint32(digest[0:], d.h[0])
sha256.go#L236: byteorder.BEPutUint32(digest[4:], d.h[1])
sha256.go#L237: byteorder.BEPutUint32(digest[8:], d.h[2])
sha256.go#L238: byteorder.BEPutUint32(digest[12:], d.h[3])
sha256.go#L239: byteorder.BEPutUint32(digest[16:], d.h[4])
sha256.go#L240: byteorder.BEPutUint32(digest[20:], d.h[5])
sha256.go#L241: byteorder.BEPutUint32(digest[24:], d.h[6])
sha256.go#L243: byteorder.BEPutUint32(digest[28:], d.h[7])
sha256block.go#L82: h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
sha256block.go#L127: dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7] = h0, h1, h2, h3, h4, h5, h6, h7